home *** CD-ROM | disk | FTP | other *** search
-
- -- Objects which may be compared for a total order relation
-
- deferred class interface COMPARABLE
- exported features
- infix "<" (other:like Current):BOOLEAN
- -- Is current object less than 'other'?
- deferred
- infix "<=" (other:like Current):BOOLEAN
- -- Is current object less than or equal to 'other'?
- deferred
- infix ">" (other:like Current):BOOLEAN
- -- Is current object greater than 'other'?
- deferred
- infix ">=" (other:like Current):BOOLEAN
- -- Is current object greater than or equal to 'other'?
- deferred
- end interface -- class 'COMPARABLE'
-